home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Precision Software Appli…tions Silver Collection 1
/
Precision Software Applications Silver Collection Volume One (PSM) (1993).iso
/
games
/
egavga
/
bricks01.exe
/
LOCAL.H
< prev
next >
Wrap
C/C++ Source or Header
|
1989-08-07
|
381b
|
34 lines
/*
* local.h -- local header for common defs
*/
#ifndef LOCAL_H
#define LOCAL_H
#ifndef EOF
#define EOF (-1)
#endif
#ifndef TRUE
#define TRUE 1
#define FALSE 0
#endif
#ifndef OK
#define OK 1
#define BAD 0
#endif
#ifndef bool
#define bool int
#endif
#ifndef BOOLEAN
#define BOOLEAN int
#endif
#endif
/* end of local.h so far */